home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / idioms.lha / idioms / 8-3b.c < prev    next >
C/C++ Source or Header  |  1993-08-08  |  311b  |  18 lines

  1. /* Copyright (c) 1992 by AT&T Bell Laboratories. */
  2. /* Advanced C++ Programming Styles and Idioms */
  3. /* James O. Coplien */
  4. /* All rights reserved. */
  5.  
  6. int main() {
  7.     Class *ted =
  8.     employee->make(
  9.         "ted", 2823763108
  10.     );
  11.     // . . . .
  12.     ted->logTimeWorked(8);
  13.     ted->printPaycheck();
  14.     delete ted;
  15. }
  16.  
  17.  
  18.